{% if error %}
{{ error }}
{% endif %}
{% if success %}
{{ success }}
{% endif %}
{% if requestToShow %}
Request Title: {{ requestToShow.title }}
{% if username == requestToShow.sender %}
User {{ requestToShow.recipient }} wants to transfer {{ requestToShow.amount }} $ from you, user {{ requestToShow.sender }}, to them.
They provided the following description for the transfer: {{ requestToShow.description }}
{% endif %}
{% if username == requestToShow.recipient %}
You, user {{ requestToShow.recipient }}, want to transfer {{ requestToShow.amount }} $ from user {{ requestToShow.sender }} to you.
You provided the following description for the transfer: {{ requestToShow.description }}
{% endif %}
{% endif %}